home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / J9AS2F (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  833 b   |  17 lines

  1. package com.sun.java.swing.event;
  2.  
  3. public final class DocumentEvent$EventType {
  4.    public static final DocumentEvent$EventType INSERT = new DocumentEvent$EventType("INSERT");
  5.    public static final DocumentEvent$EventType REMOVE = new DocumentEvent$EventType("REMOVE");
  6.    public static final DocumentEvent$EventType CHANGE = new DocumentEvent$EventType("CHANGE");
  7.    private String typeString;
  8.  
  9.    private DocumentEvent$EventType(String s) {
  10.       this.typeString = s;
  11.    }
  12.  
  13.    public String toString() {
  14.       return this.typeString;
  15.    }
  16. }
  17.